home *** CD-ROM | disk | FTP | other *** search
/ Win 50 Game+ Vol. 7 (Japan) / Win 50 Game+ Vol. 7 (Japan).7z / Win 50 Game+ Vol. 7 (Japan).bin / lha_file / sheep11_.lzh / SH11SRC.LZH / SHEPHELD.DPR < prev    next >
Text File  |  1996-05-28  |  362b  |  18 lines

  1. program Shepheld;
  2.  
  3. uses
  4.   Forms,
  5.   Mgmain in 'MGMAIN.PAS' {Form1},
  6.   About in 'ABOUT.PAS' {AboutBox};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   if hprevinst <> 0 then exit;
  12.   Application.Title := 'Shepheld Boy';
  13.   Application.HelpFile := 'shepheld.hlp';
  14.   Application.CreateForm(TForm1, Form1);
  15.   Application.CreateForm(TAboutBox, AboutBox);
  16.   Application.Run;
  17. end.
  18.